runtime.gcBits.bytep (method)

8 uses

	runtime (current package)
		mbitmap.go#L150: 	bytes := (*[8]uint8)(unsafe.Pointer(s.allocBits.bytep(whichByte)))
		mbitmap.go#L803: 		mrkBits := *(*uint64)(unsafe.Pointer(s.gcmarkBits.bytep(i)))
		mgcsweep.go#L603: 		if (*s.gcmarkBits.bytep(obj / 8)&^*s.allocBits.bytep(obj / 8))>>(obj%8) != 0 {
		mgcsweep.go#L608: 			if *s.gcmarkBits.bytep(i)&^*s.allocBits.bytep(i) != 0 {
		mheap.go#L1948: func (b *gcBits) bytep(n uintptr) *uint8 {
		mheap.go#L1955: 	return b.bytep(n / 8), 1 << (n % 8)